home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / pcl-src.zoo / pyr-patches.lsp < prev    next >
Encoding:
Lisp/Scheme  |  1992-07-09  |  296 b   |  10 lines

  1. (in-package 'pcl)
  2.  
  3. ;;; This next kludge disables macro memoization (the default) since somewhere
  4. ;;; in PCL, the memoization is getting in the way.
  5.  
  6. (eval-when (load eval)
  7.     (format t "~&;;; Resetting *MACROEXPAND-HOOK* to #'FUNCALL~%")
  8.     (setq lisp::*macroexpand-hook* #'funcall))
  9.  
  10.